home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / radiance / simplerd.lha / simplerad / FinalFTP / WalkT / vcr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-22  |  1.0 KB  |  26 lines

  1. /**********************************************************************/
  2. /* vcr.h                                                              */
  3. /*                                                                    */
  4. /* Copyright (C) 1992, Bernard Kwok                                   */
  5. /* All rights reserved.                                               */
  6. /* Revision 1.0                                                       */
  7. /* May, 1992                                                          */
  8. /**********************************************************************/
  9. /* possible screen modes */
  10. #define FULL 1                     /* Full screen */
  11. #define NTSC 2                     /* NTCS size screen */
  12. #define REC  3                     /* NTSC mode */
  13.  
  14. typedef struct {
  15.   int mode;
  16.   int width, height;
  17. } Vcr_params;
  18.  
  19. extern void vcr_set_mode();
  20. extern void vcr_start_record();
  21. extern void vcr_setup_window();
  22. extern void vcr_start_video();
  23. extern void vcr_grab();
  24. extern void vcr_stop_record();
  25. extern void vcr_end_video();
  26.